home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 7
/
Aminet 7 - August 1995.iso
/
Aminet
/
comm
/
tcp
/
AmigaTCP.lha
/
AmigaTCP
/
src
/
amiga.h
< prev
next >
Wrap
C/C++ Source or Header
|
1989-06-24
|
458b
|
15 lines
#define ASY_MAX 1 /* one serial port on an amiga */
struct asy {
unsigned char *input_buffer; /* point to input buffer */
unsigned buflen; /* length of recv buffer */
unsigned char *input_p; /* pointer to current byte */
unsigned input_len; /* bytes left */
unsigned speed; /* line speed */
unsigned addr; /* address: we'll use this as unit number */
unsigned vec; /* vector: right. */
};
extern struct asy asy[ASY_MAX];
extern unsigned nasy;